
        .editorial-module {
            display: flex;
            width: 100%;
            max-width: 1147px;
            min-height: 400px;
            background-color: #ffffff;
            overflow: hidden;
            margin: 25px auto;
            text-underline-position: none!important
        }

        /* SecciÃ³n de ImÃ¡genes */
        .image-section {
            flex: 1;
            position: relative;
            overflow: hidden;
            min-width: 60%!important
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 400px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out, transform 6s ease-out;
            transform: scale(1.05);
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Indicadores de navegaciÃ³n */
        .nav-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: white;
            transform: scale(1.2);
        }



        /* SecciÃ³n de Texto */
        .text-section {
            flex: 1;
            background-color: #2d2d2d;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 10px;
            text-align: center;
            min-width: 3    0%;
        }

        .label {
            display: inline-block;
            background-color: white;
            color: #1a1a1a;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            cursor: text;
            outline: none;
            transition: background-color 0.3s ease;
        }

        .headline {
            color: white;
            font-size: 2rem;
            line-height: 1.9rem;
            font-weight: 400;
            margin-bottom: 40px;
            cursor: text;
            outline: none;
            max-width: 90%;
        }

        .headline:focus, .label:focus, .author:focus {
            outline-offset: 4px;
        }

        .divider {
            width: 60px;
            height: 2px;
            background-color: rgba(255, 255, 255, 0.3);
            margin-bottom: 20px;
        }

        .author {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            font-style: normal;
            cursor: text;
            outline: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .editorial-module {
                flex-direction: column;
                max-height: 500px;
            }

            .image-section {
                min-height: 300px;
            }

            .text-section {
                padding: 20px;
            }

            .headline {
                font-size: 1.2rem;
                margin-bottom: 8px;
                line-height: 1.1rem
            }
            .label {
                margin-bottom: 0!important
            }
            .divider {
                margin-bottom: 0!important
            }
            .author {
                margin-top: 10px!important;
                font-size: 0.9rem
            }

        }

        /* AnimaciÃ³n de fade suave */
        @keyframes gentleFade {
            0%, 100% { opacity: 0.95; }
            50% { opacity: 1; }
        }

        .text-section {
            animation: gentleFade 4s ease-in-out infinite;
        }